home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / fgl105c.zip / 01-01.C next >
Text File  |  1991-05-23  |  191b  |  12 lines

  1. #include <stdio.h>
  2. #include <fastgraf.h>
  3.  
  4. main()
  5. {
  6.    int major;
  7.    int minor;
  8.  
  9.    fg_version(&major,&minor);
  10.    printf("This is version %d.%2.2d of Fastgraph.\n",major,minor);
  11. }
  12.